home *** CD-ROM | disk | FTP | other *** search
/ SOHO - Exploring the Sun - 2003 Update / SOHO - Exploring the Sun - 2003 Update.iso / pc / data / main.dcr / scripts_84.ls < prev    next >
Encoding:
Text File  |  2003-02-25  |  339 b   |  22 lines

  1. on prepareFrame
  2.   puppetSound(1, 0)
  3. end
  4.  
  5. on exitFrame
  6. end
  7.  
  8. on keyDown
  9.   global global_volume
  10.   if the key = " " then
  11.     go("sunmover")
  12.   end if
  13.   if the key = "+" then
  14.     set global_volume to global_volume + 1
  15.     UpdateVolume()
  16.   end if
  17.   if the key = "-" then
  18.     set global_volume to global_volume - 1
  19.     UpdateVolume()
  20.   end if
  21. end
  22.